home *** CD-ROM | disk | FTP | other *** search
/ Aminet 16 / Aminet 16 (1996)(GTI - Schatztruhe)[!][Dec 1996].iso / Aminet / dev / src / wangisrc.lha / wangi / z / oldwp / Lib / smakefile < prev    next >
Makefile  |  1995-03-26  |  716b  |  32 lines

  1. all: libs:wangi.library
  2.  
  3. libs:wangi.library: wangi.o 
  4.       slink with <<
  5. LIBPREFIX _LIB 
  6. LIBFD wangi.fd 
  7. to wangi.library 
  8. FROM lib:libent.o lib:libinit.o wangi.o 
  9. lib lib:sc.lib 
  10. noicons
  11. SD 
  12. libversion 1 librevision 0
  13. <
  14. # copy library to LIBS:
  15.       slink from wangi.library to wangi.library noicons
  16. # create pragma file
  17.       fd2pragma wangi.fd wangi_pragmas.h
  18. # create HSPascal unit definition
  19.       fdtopas wangi.fd wangi.PAS
  20. # work around fdtopas bug...
  21.       splat -o " xassembler" "; xassembler" wangi.PAS
  22. # compile a test program
  23.       hspc test.pas /Upas:,pas:units /B
  24. # copyto LIBS:
  25.       Copy *.library TO LIBS: CLONE
  26. # flush old library
  27.       flushlibs
  28.  
  29. wangi.o: wangi.c
  30.       sc libcode wangi.c
  31.  
  32.